home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / VGX / shadows / fastobj.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  2KB  |  109 lines

  1. /*
  2.  * Copyright 1991, 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. #if FALSE
  18. #include "stdio.h"
  19. #include "gl.h"
  20. #include "device.h"
  21.  
  22. /* lighting and material stuff */
  23.  
  24. #define NUM_LIGHT_PARAMS    3
  25. #define XSPECULAR        1
  26. #define LOCAL            2
  27. #define MULTISPEC        3
  28.  
  29. #define    NUM_COLORS        7
  30. #define    NUM_OBJS        4
  31.  
  32. #define    NUM_MATERIALS        10
  33. #define MAT_BRASS        1
  34. #define MAT_SHINYBRASS        2
  35. #define MAT_PEWTER        3
  36. #define MAT_SILVER        4
  37. #define MAT_GOLD        5
  38. #define MAT_SHINYGOLD        6
  39. #define MAT_PLASTER        7
  40. #define MAT_REDPLASTIC        8
  41. #define MAT_GREENPLASTIC    9
  42. #define MAT_BLUEPLASTIC        10
  43.  
  44. /* drawing data types */
  45.  
  46. #define POLYGON    1
  47. #define LINES    2
  48. #define TRANSPERENT 3
  49. #define DISPLAY    4
  50. #define LMATERIAL 5
  51.  
  52. #define RGB    8
  53. #define SMOOTH    6
  54. #define NORMAL    9
  55.  
  56. typedef struct attribs {
  57.     int r, g, b;
  58.     float nx, ny, nz;
  59. } attribs;
  60.  
  61. typedef struct point {
  62.     struct point     *next;
  63.     int         type;
  64.     attribs        *attr;
  65.     float x, y, z;
  66. } point;
  67.  
  68. typedef struct object {
  69.        struct object     *next;
  70.     int         type;
  71.     attribs        *attr;
  72.     point         *points;
  73. } object;
  74. #endif
  75.  
  76. #define FASTMAGIC    0x5423
  77.  
  78. typedef struct fastobj {
  79.     int npoints;
  80.     int colors;
  81.     int type;
  82.     int material;
  83.     int display;
  84.     int ablend;
  85.     int *data;
  86.     struct fastobj    *swirl;
  87. } fastobj;
  88.  
  89. fastobj *readfastobj();
  90.  
  91. #if FALSE
  92. extern int lflag;
  93.  
  94. /*
  95.  * Wrappers to do either lines or polygons
  96.  */
  97. #define PolyOrLine()    if (lflag == LINES) { \
  98.                 bgnclosedline(); \
  99.             } else if (POLYGON) { \
  100.                 bgnpolygon(); \
  101.             }
  102.  
  103. #define EndPolyOrLine() if (lflag == LINES) { \
  104.                 endclosedline(); \
  105.             } else if (POLYGON) { \
  106.                 endpolygon(); \
  107.             }
  108. #endif
  109.